100 |
Is is possible to toggle the selection of dates, such the first click selects the date, the second click unselects it, and so on
With Schedule1 .OnResizeControl = 1281 ' OnResizeControlEnum.exCalendarFit Or OnResizeControlEnum.exHideSplitter Or OnResizeControlEnum.exResizePanelRight With .Calendar .AllowToggleSelectKey = 1 .AllowSelectDate = 1 .SingleSel = False End With End With |
99 |
How can I change the background color for selected dates in the calendar panel, so always is the same no matter if the control loses the focus
With Schedule1 .Background(68) = .Background(19) .Background(69) = .Background(20) End With |
98 |
Is it possible to specify a different background color for the calendar panel
With Schedule1 .Background(4) = RGB(240,240,240) End With |
97 |
How do I change the control's border, using your EBN files
With Schedule1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Appearance = 16777216 ' &H1000000 End With |
96 |
Is it possible to prevent showing the calendar at all
|
95 |
How can I change the visual aspect only for a specified event
With Schedule1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Calendar.Selection = #6/20/2012# With .Events .Add #6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM# .Add(#6/20/2012 10:30:00 AM#,#6/20/2012 1:00:00 PM#).BodyBackColor = &H1000000 .Add #6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM# End With .DefaultEventPadding(-1) = 2 End With |
94 |
How can I change the visual aspect of the events
With Schedule1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(75) = &H1000000 .Background(79) = &H1000000 .BodyEventBackColor = &H1000000 End With |
93 |
Is there any event to let me know once an edit has been edited
' LayoutEndChanging event - Notifies your application once the control's layout has been changed. Private Sub Schedule1_LayoutEndChanging(ByVal Operation As Long) With Schedule1 Debug.Print( "End exScheduleEditEvent(15)" ) Debug.Print( Operation ) End With End Sub ' LayoutStartChanging event - Occurs when the control's layout is about to be changed. Private Sub Schedule1_LayoutStartChanging(ByVal Operation As Long) With Schedule1 Debug.Print( "Start exScheduleEditEvent(15)" ) Debug.Print( Operation ) End With End Sub With Schedule1 .AllowEditEvent = 1 .AllowSelectEvent = 0 .DefaultEventLongLabel = "" .DefaultEventShortLabel = .DefaultEventLongLabel .VisualDesign = "gBFLBWIgBAEHhEJAEGg7IAUHXI6g0MAAmhULikUCIgg6sh4AgRCJ0Ui8HjKTj6AADACAxRDAMgBQKAAzQFAYZhpBaERiHEZoJhUAIIRZGMQxXAcMQvDSKQRhEAoJDgN" & _ "4kQKNYyQYAAYhuGaPBhASQJUhkMocR7HMygBJkUABEyYaFHdIFCQ1DykJzkCbqAgkMYeDRHQxTdQsEgpDQMIRpGA5eb+XgAV4/cTSYKQahLMizJYGUYLHgma5tTTWcTV" & _ "PLVFRrJiTYRlKTJOjCCQ0ATdUyzPAeCRzQ6QJ5kUZ6CgSUpGRjkhY6agkF6VVxCNg2BT8KzxRoAKhiGpKHpaCaUQLWMB5PaoAR8fLYAA2B6bDhGaa2XAAFr2VZkWSUBB" & _ "pnSWo8kYIg1D6NBuGyIhYnCXx5kuHZcjUAAOAcDxbF2L5mmKPIOl2Ox7l2XJVGAfRMh8CABiyYpgi8E5pFSRp4DQHBkiKOQug4ChpmqPRoiAco6HePxJDUXQAASCYpHA" & _ "WpUHmGxmlwdphlwQJWncMQzFwXknCodJcEcXRiHYUIYCwAByhyaB1lAeReDgTgAHwU44GoHB3lUJgFi2BgYCYGYGgkFx2C2ax+lARI9FKA5YHiMR2guHBHlUPIChuBRJ" & _ "k4XIjiUKg8GsY5ohkZoQh2dJ6AYZxfFkHZoF2E5gkQOBPgMIJJHwS5WJmMRvhINwRHKAAdCieZyHEHgxEAaQYkcQZUHIGRUnQJIuAGEAxAgTYclGFBRAMCgQhgTZnEII" & _ "Q0AweIdCYZYGgaIZbDaTJbiKaJKDaDojmkChGhKI5bDoHoWD+aIqDiPImmmSh2h6J5qAqBoi3yeghjCIwpnIeoqiqapKjaLormsCouh+IwrBqVo2i2a4KlqHItY0Fo+i" & _ "+bALAaF4riuOmPjCLILCaSYxCmOpwh6MotAsRoWjMC5LDqUo1m0GxSlaNgtktlgxiuWx2mKL4tnMbpHjiboKB6ZY5m6G42muOBuluJpvjObwbkqLYxG4a5CnWOIvDubp" & _ "oiyKZrG6fo3HACxWg6OwwDsYoriUGwMCMCY0iqOgnBKQ4wnsQwUFgcR8FaSJGE+fBzBqMAxkqZwikichLlKFxAEAgIA==" .Calendar.Selection = #6/20/2012# With .Events .Add(#6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM#).Editable = 3 .Add(#6/20/2012 10:30:00 AM#,#6/20/2012 1:00:00 PM#).Editable = 3 .Add(#6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM#).Editable = 3 End With .DefaultEventPadding(-1) = 2 End With |
92 |
I've noticed that the background of the event while editing is transparent. Is it possible to change it
With Schedule1 .AllowEditEvent = 1 .AllowSelectEvent = 0 .DefaultEventLongLabel = "" .DefaultEventShortLabel = .DefaultEventLongLabel .VisualDesign = "gBFLBWIgBAEHhEJAEGg41hhjNcHhgAE0KhcTiYREEHDMMgRCJ0Ti0ShEGhiAADACAxRDAMgBQKAAzQFAYbhsGCGAAGEZBQgmFgAQhFcZQSKUOQTDKMIziaQIRDINQlS" & _ "TJcQjKKEUQTFiXIyAKL5CgkBYJBrNM5SFIAEQSKA0TDOQ5To5jEBzIxIIjaJhoNoJChNU4TIDELphECdYqUCq6cp2XgAJhYNhWHYgAIjM60LRtIAELq2bpvXAACCXHal" & _ "azsAA+bxvK67cAAd5/YBgOBAAaGC4NQ7EAANHC8Mw3DgAGLkORZHigACzS7MMxzIACQx3HqfaAABK6HomS5NUTTNR0TLNAy3HqWZpsOYZBima4lRTHNxxTBMIz3Bp+YI" & _ "4DgC5FnOCx6jkXY5DcSxlkOGxujMWo6DaCwFhOKzgFeOw1lAAoXjuXpvngAAQBAgI" .Calendar.Selection = #6/20/2012# With .Events .Add(#6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM#).Editable = 3 .Add(#6/20/2012 11:00:00 AM#,#6/20/2012 1:00:00 PM#).Editable = 3 .Add(#6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM#).Editable = 3 End With .Background(83) = RGB(255,0,0) End With |
91 |
How can I edit the Event.LongLabel property of the Event rather than ExtraLabel
With Schedule1 .AllowEditEvent = 1 .AllowSelectEvent = 0 .DefaultEventLongLabel = "" .DefaultEventShortLabel = .DefaultEventLongLabel .Calendar.Selection = #6/20/2012# With .Events .Add(#6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM#).Editable = 3 .Add(#6/20/2012 11:00:00 AM#,#6/20/2012 1:00:00 PM#).Editable = 3 .Add(#6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM#).Editable = 3 End With End With |
90 |
Is it possible to edit the event at a single click rather than double click
With Schedule1 .AllowEditEvent = 1 .AllowSelectEvent = 0 .Calendar.Selection = #6/20/2012# With .Events .Add #6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM# .Add #6/20/2012 11:00:00 AM#,#6/20/2012 1:00:00 PM# .Add #6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM# End With End With |
89 |
How can I prevent editing the events
|
88 |
How can I prevent selecting the events
|
87 |
The event gets blue when selected. It is possible to draw a frame instead
|
86 |
Is there an event that fires when the user selects a different day/week/month
' LayoutEndChanging event - Notifies your application once the control's layout has been changed. Private Sub Schedule1_LayoutEndChanging(ByVal Operation As Long) With Schedule1 Debug.Print( Operation ) Debug.Print( "should be on exCalendarSelectionChange(1)" ) End With End Sub ' LayoutStartChanging event - Occurs when the control's layout is about to be changed. Private Sub Schedule1_LayoutStartChanging(ByVal Operation As Long) With Schedule1 Debug.Print( Operation ) Debug.Print( "should be on exCalendarSelectionChange(1)" ) End With End Sub |
85 |
Can I use and display just the Caption of the Event
With Schedule1 .DefaultEventLongLabel = "<%=%5%>" .DefaultEventShortLabel = .DefaultEventLongLabel .Calendar.Selection = #6/20/2012# With .Events .Add(#6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM#).Caption = "caption 1" .Add(#6/20/2012 11:00:00 AM#,#6/20/2012 1:00:00 PM#).Caption = "caption 2" .Add(#6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM#).Caption = "caption 3" End With End With |
84 |
How can I use the Caption property of the Event
With Schedule1 .DefaultEventLongLabel = "<%=%256%><br><b><%=%5%>" .DefaultEventShortLabel = .DefaultEventLongLabel .Calendar.Selection = #6/20/2012# With .Events .Add(#6/20/2012 9:00:00 AM#,#6/20/2012 11:00:00 AM#).Caption = "caption 1" With .Add(#6/20/2012 11:00:00 AM#,#6/20/2012 1:00:00 PM#) .LongLabel = "" .ExtraLabel = "<%=%5%>" .Caption = "caption 2" End With With .Add(#6/20/2012 1:00:00 PM#,#6/20/2012 3:00:00 PM#) .LongLabel = "<%=%256%><br><b><%=%5%><br><fgcolor=808080>another text" .Caption = "caption 3" End With End With End With |
83 |
Is it possible to display a view of appointments with more than one person
With Schedule1 .BeginUpdate .Calendar.Selection = #6/20/2012# .DisplayGroupingButton = True .ShowGroupingEvents = True With .Groups With .Add(1,"Mihai") .EventBackColor = RGB(255,0,0) .HeaderForeColor = .EventBackColor .Visible = True .Title = .Caption End With With .Add(2,"Dave") .EventBackColor = RGB(0,255,0) .HeaderForeColor = .EventBackColor .Visible = True .Title = .Caption End With With .Add(3,"Enrike") .EventBackColor = RGB(128,128,255) .HeaderForeColor = .EventBackColor .Visible = True .Title = .Caption End With End With .DefaultEventLongLabel = "<%=%256%><br><%=%263%>" With .Events .Add(#6/20/2012 10:00:00 AM#,#6/20/2012 1:30:00 PM#).GroupID = 1 .Add(#6/20/2012 11:00:00 AM#,#6/20/2012 1:30:00 PM#).GroupID = 2 .Add(#6/20/2012 1:30:00 PM#,#6/20/2012 3:00:00 PM#).GroupID = 3 End With .EndUpdate End With |
82 |
How can I prevent selecting more dates in the schedule view
With Schedule1 .ScrollBars = 0 .AllowMoveSchedule = 0 .Calendar.SingleSel = True End With |
81 |
How can I get ride of the control's scroll bars
|
80 |
I am hiding the Calendar section of the control, the question is how can I select another date in the scheduler
|
79 |
How can I add an event to indicate the Easter Sunday
With Schedule1 With .Calendar .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "month(value) in (3,4)" .HighlightEvent.BackColor = RGB(128,128,128) .ShowYearScroll = True End With .Background(68) = .Background(19) .Background(37) = .Background(19) With .Events With .Add(#6/12/2012 10:00:00 AM#,#6/12/2012 2:00:00 PM#) .AllDayEvent = True .Repetitive = "not(month(value) in (3,4,5)) ? 0 : ( floor(value)=(2:=floor(date(dateS('3/1/' + year(value)) + ((1:=(((255 - 11 * (year(value) " & _ "mod 19)) - 21) mod 30) + 21) + (=:1 > 48 ? -1 : 0) + 6 - ((year(value) + int(year(value) / 4)) + =:1 + (=:1 > 48 ? -1 : 0) + 1) " & _ "mod 7)))))" .LongLabel = "EASTER of <%=year(%1)%> falls in<br><%=%1%>" .ShortLabel = .LongLabel End With End With End With |
78 |
I need a repetitive event happens every n-days, and stops after m-times. Can your control handle this
With Schedule1 .SelectEventStyle = 304 ' LinesStyleEnum.exLinesThick Or LinesStyleEnum.exLinesSolid With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = #1/1/2012# .Selection = "month(value) = 6" .HighlightEvent.FontSize = 10 End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) With .Events With .Add(#6/12/2012 10:00:00 AM#,#6/12/2012 2:00:00 PM#) .Repetitive = "(value >= (0:=#6/1/2012#)) and ( (value - =:0) mod (1:=5) = 0) and (value-=:0) < (3*=:1)" .Selected = True End With End With End With |
77 |
How can I add a repetitive event to occur every n days
With Schedule1 .SelectEventStyle = 304 ' LinesStyleEnum.exLinesThick Or LinesStyleEnum.exLinesSolid With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "month(value) = 6" .HighlightEvent.FontSize = 10 End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) With .Events With .Add(#6/12/2012 10:00:00 AM#,#6/12/2012 2:00:00 PM#) .Repetitive = "value >= #6/1/2012# and ( (value - #6/1/2012#) mod 5 = 0)" .Selected = True End With End With End With |
76 |
I am using the AutoHide option, just wondering if there is any event that notifies once the calendar panel shows or hides
' LayoutEndChanging event - Notifies your application once the control's layout has been changed. Private Sub Schedule1_LayoutEndChanging(ByVal Operation As Long) With Schedule1 Debug.Print( "End exLayoutCalendarAutoHide(7)" ) Debug.Print( Operation ) End With End Sub ' LayoutStartChanging event - Occurs when the control's layout is about to be changed. Private Sub Schedule1_LayoutStartChanging(ByVal Operation As Long) With Schedule1 Debug.Print( "Start exLayoutCalendarAutoHide(7)" ) Debug.Print( Operation ) End With End Sub With Schedule1 .OnResizeControl = 2048 End With |
75 |
Is it possible to display the same event on multiple days
With Schedule1 .SelectEventStyle = 304 ' LinesStyleEnum.exLinesThick Or LinesStyleEnum.exLinesSolid With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = #1/1/2012# .Selection = "month(value) = 6" .HighlightEvent.FontSize = 10 End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) With .Events With .Add(#6/12/2012 10:00:00 AM#,#6/12/2012 2:00:00 PM#) .Repetitive = "value in (#6/8/2012#,#6/11/2012#,#6/20/2012#)" .Selected = True End With End With End With |
74 |
How can I change the selection background color so it is the same if the control loses the focus
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .Selection = #6/12/2012# .HighlightEvent.FontSize = 10 End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) .Events.Add #6/12/2012 10:00:00 AM#,#6/12/2012 2:00:00 PM# .Background(68) = .Background(19) End With |
73 |
How can I add a repetitive event so it occurs every Monday
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "month(value) = 6" With .HighlightEvent .FontSize = 10 .BackColor = RGB(128,128,128) End With End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) With .Events .Add(#6/12/2012 10:00:00 AM#,#6/12/2012 2:00:00 PM#).Repetitive = "weekday(value) = 1" End With End With |
72 |
How can I select the current month
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "month(value) = month(date(``))" End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) End With |
71 |
How can I select the next two days
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "(value - int(date(``))) in (1,2,0)" End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) End With |
70 |
How can I select the last two days
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "(int(date(``)) - value) in (1,2,0)" End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) End With |
69 |
How can I select the current week
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "(int((yearday(value) -1- ((7-weekday(value - yearday(value) + 1)) mod 7) )/7) = int((yearday(date(``))-1)/7))" End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) End With |
68 |
Is it possible to highlight or change the background or foreground color for the today date in the schedule panel
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 0 .Selection = "month(value) = month(date(``)) and (int((yearday(value) -1- ((7-weekday(value - yearday(value) + 1)) mod 7) )/7) = int((yearday" & _ "(date(``))-1)/7))" End With .BorderSelStyle = -1 .Background(81) = RGB(240,240,240) End With |
67 |
How can I display no working/non-working days in the control
With Schedule1 With .Calendar .NonworkingDays = 0 .ShowNonMonthDays = False .FirstWeekDay = 1 End With .BorderSelStyle = -1 End With |
66 |
The schedule displays a blue border around the selected dates. How can I get ride of that
With Schedule1 With .Calendar .ShowNonMonthDays = False .Selection = #6/18/2012# End With .BorderSelStyle = -1 End With |
65 |
The calendar panel shows days that belongs to another month. How can I display just the days within the current month
With Schedule1 .Calendar.ShowNonMonthDays = False End With |
64 |
Is it possible to show the non-working days with a solid color instead
With Schedule1 With .Calendar .Selection = #6/14/2012# .Selection = "value in (#6/14/2012#,#6/15/2012#,#6/16/2012#,#6/17/2012#)" .FirstWeekDay = 1 .NonworkingDaysPattern = 1 .NonworkingDaysColor = RGB(224,224,224) End With End With |
63 |
How can I display the now-working days in the schedule panel too
|
62 |
How can I make the control read-only
With Schedule1 .AllowCreateEvent = 0 .AllowMoveEvent = 0 .AllowResizeEvent = 0 .AllowMoveSchedule = 1 .AllowSelectEvent = 0 .Calendar.Selection = #5/24/2012# .Calendar.Selection = "value in (#05/24/2012#,#05/25/2012#,#05/26/2012#)" .Events.Add #5/25/2012 9:30:00 AM#,#5/25/2012 1:00:00 PM# End With |
61 |
How can I check/uncheck a group, so it is visible after I add it
With Schedule1 .DisplayGroupingButton = True .ShowGroupingEvents = True .Groups.Add(1,"Pro").Visible = True End With |
60 |
The drop down button to show groups is not visible, even I set the DisplayGroupingButton. What Can I do
With Schedule1 .DisplayGroupingButton = True .ShowGroupingEvents = True End With |
59 |
It is possible to translate "All" to "Todos" or to something else
With Schedule1 .Description(0) = "(todos)" .DisplayGroupingButton = True .ShowGroupingEvents = True .Groups.Add 1,"Pro" End With |
58 |
How can I remove the control's scroll bars
With Schedule1 .ScrollBars = 0 End With |
57 |
How can I select a month
|
56 |
How can I display two or more dates in the scheduler (Method 2)
With Schedule1 With .Calendar .Selection = #5/24/2012# .Selection = "value in ( #5/24/2012#, #5/25/2012# )" End With End With |
55 |
How can I display two or more dates in the scheduler (Method 1)
With Schedule1 With .Calendar .Selection = "0" .SelectDate(#5/24/2012#) = True .SelectDate(#5/25/2012#) = True End With End With |
54 |
How can I define a different color for nonworking part for different days
With Schedule1 .BeginUpdate With .Calendar .Selection = #5/21/2012# .Selection = "(value >= #05/21/2012#) and (value <= #05/25/2012#)" .FirstWeekDay = 1 End With With .NonworkingPatterns .Add(1234,6).Pattern.Color = RGB(255,0,0) .Add(1235,6).Pattern.Color = RGB(0,255,0) .Add(1236,6).Pattern.Color = RGB(0,0,255) With .Add(1237,778) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternCross .Pattern.Color = RGB(128,128,128) .Pattern.FrameColor = RGB(64,64,64) .BackColor = RGB(255,255,0) End With End With With .NonworkingTimes .Add "weekday(value) in (0,1)","10:00","11:45",1234 .Add "weekday(value) = 2","00:00","08:45",1235 .Add "weekday(value) = 2","15:00","24:00",1235 .Add "weekday(value) in (3,5)","12:15","13:00",1236 .Add "weekday(value) = 4","13:30","15:00",1237 End With .ShowNonworkingTime = 3 .EndUpdate End With |
53 |
Is it possible to show both nonworking and the events, using semi-transparent color
With Schedule1 With .Calendar .Selection = #5/24/2012# .Selection = "value in (#05/24/2012#,#05/25/2012#,#05/26/2012#)" End With With .NonworkingPatterns .Add 1234,11 With .Add(9871,780) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternYard .BackColor = RGB(255,0,0) End With With .Add(9872,780) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternYard .BackColor = RGB(255,255,0) End With End With With .NonworkingTimes .Add "1","00:00","08:45",1234 .Add "weekday(value) = 5","10:00","11:45",9871 .Add "weekday(value) = 4","12:00","12:35",9872 End With .Events.Add #5/25/2012 9:30:00 AM#,#5/25/2012 1:00:00 PM# .ShowNonworkingTime = 3 End With |
52 |
Is it possible to show the nonworking part behind, on the back
With Schedule1 With .Calendar .Selection = #5/24/2012# .Selection = "value in (#05/24/2012#,#05/25/2012#,#05/26/2012#)" End With With .NonworkingPatterns .Add 1234,11 With .Add(9871,780) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternYard .BackColor = RGB(255,0,0) End With With .Add(9872,780) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternYard .BackColor = RGB(255,255,0) End With End With With .NonworkingTimes .Add "1","00:00","08:45",1234 .Add "weekday(value) = 5","10:00","11:45",9871 .Add "weekday(value) = 4","12:00","12:35",9872 End With .Events.Add #5/25/2012 9:30:00 AM#,#5/25/2012 1:00:00 PM# .ShowNonworkingTime = 1 End With |
51 |
Can you explain how the non working day patterns work and how to define
for different days of the week
With Schedule1 With .Calendar .Selection = #5/24/2012# .Selection = "value in (#05/24/2012#,#05/25/2012#,#05/26/2012#)" End With With .NonworkingPatterns .Add 1234,11 With .Add(9871,780) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternYard .BackColor = RGB(255,0,0) End With With .Add(9872,780) ' PatternEnum.exPatternFrameThick Or PatternEnum.exPatternYard .BackColor = RGB(255,255,0) End With End With With .NonworkingTimes .Add "1","00:00","08:45",1234 .Add "weekday(value) = 5","10:00","11:45",9871 .Add "weekday(value) = 4","12:00","12:35",9872 End With End With |
50 |
How can I add a nonworking time
With Schedule1 With .NonworkingTimes .Add "1","00:00","08:45",-1 .Add "weekday(value) = weekday(date(``))","10:00","11:15",-1 End With End With |
49 |
How can I get the event from the cursor
' MouseMove event - Occurs when the user moves the mouse. Private Sub Schedule1_MouseMove(ByVal Button As Integer,ByVal Shift As Integer,ByVal X As Long,ByVal Y As Long) With Schedule1 Debug.Print( "Calendar.DateFromPoint" ) Debug.Print( .Calendar.DateFromPoint(-1,-1) ) Debug.Print( "AnchorFromPoint" ) Debug.Print( .AnchorFromPoint(-1,-1) ) Debug.Print( "DateTimeFromPoint" ) Debug.Print( .DateTimeFromPoint(-1,-1) ) Debug.Print( "TimeFromPoint" ) Debug.Print( .TimeFromPoint(-1,-1) ) Debug.Print( "TimeScaleFromPoint" ) Debug.Print( .TimeScaleFromPoint(-1,-1) ) Debug.Print( "GroupFromPoint" ) Debug.Print( .GroupFromPoint(-1,-1) ) Debug.Print( "GroupHeaderFromPoint" ) Debug.Print( .GroupHeaderFromPoint(-1,-1) ) Debug.Print( "MarkZoneFromPoint" ) Debug.Print( .MarkZoneFromPoint(-1,-1) ) Debug.Print( "NonworkingTimeFromPoint" ) Debug.Print( .NonworkingTimeFromPoint(-1,-1) ) Debug.Print( "MarkTimeFromPoint" ) Debug.Print( .MarkTimeFromPoint(-1,-1) ) Debug.Print( "EventFromPoint" ) Debug.Print( .EventFromPoint(-1,-1) ) Debug.Print( "PictureFromPoint" ) Debug.Print( .PictureFromPoint(-1,-1) ) End With End Sub With Schedule1 .BeginUpdate .AllowMultiDaysEvent = False .AllowCreateEvent = 17 ' AllowKeysEnum.exCTRLKey Or AllowKeysEnum.exLeftClick .AllowMoveEvent = 17 ' AllowKeysEnum.exCTRLKey Or AllowKeysEnum.exLeftClick .AllowMoveTimeScale = 1 .AllowMoveSchedule = 1 .AllowSelectEvent = 17 ' AllowKeysEnum.exCTRLKey Or AllowKeysEnum.exLeftClick .AllowResizeEvent = 1 .Calendar.MaxMonthY = 6 .SelectEventStyle = 816 ' LinesStyleEnum.exLinesThicker Or LinesStyleEnum.exLinesSolid .Calendar.Selection = #5/24/2012# With .MarkTimes.Add("timer",#5/24/2012 11:35:00 AM#) .TimeScaleLabel = "" .Label = "<fgcolor=FF0000>Time: <b><%hh%>:<%nn%> <%AM/PM%></b><br>Date: <b><%loc_sdate%>" .LabelAlign = 34 .Line = 780 ' LinesStyleEnum.exLinesThicker Or LinesStyleEnum.exLinesDash .BodyEventBackColor = RGB(128,0,0) .BodyEventForeColor = RGB(255,255,255) .Movable = True End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
48 |
How can I show the timer only in the chart section
|
47 |
How can I let the user to move the timer from the cursor
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .MarkTimes.Add("timer",#5/24/2012 11:35:00 AM#) .TimeScaleLabel = "" .Label = "<fgcolor=FF0000>Time: <b><%hh%>:<%nn%> <%AM/PM%></b><br>Date: <b><%loc_sdate%>" .LabelAlign = 34 .Line = 780 ' LinesStyleEnum.exLinesThicker Or LinesStyleEnum.exLinesDash .BodyEventBackColor = RGB(128,0,0) .BodyEventForeColor = RGB(255,255,255) .Movable = True End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
46 |
How can I show the timer only in the time scale
|
45 |
I have seen some screen shots and noticed, that you can place images on a timer. How can I do that
With Schedule1 .BeginUpdate .Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" .Calendar.Selection = #5/24/2012# .StatusEventSize = 8 .StatusEventColor = RGB(255,255,255) With .MarkTimes.Add("timer",#5/24/2012 11:35:00 AM#) .Label = "<img>pic1</img>" .TimeScaleLabel = "<fgcolor=FF0000><b><%hh%>:<%nn%> <%AM/PM%><br><c><img>1</img>" .LabelAlign = 18 .Line = 780 ' LinesStyleEnum.exLinesThicker Or LinesStyleEnum.exLinesDash .Movable = True .StatusEventPattern.Type = 3 .StatusEventPattern.Color = RGB(255,0,0) End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
44 |
How can I change the timer's color
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .MarkTimes With .Add("timer",#5/24/2012 11:35:00 AM#) .Movable = True .LineColor = RGB(0,0,255) .StatusEventBackColor = RGB(0,0,255) .TimeScaleLineColor = RGB(0,0,255) .TimeScaleLabel = "<fgcolor=0000FF><b><%hh%>:<%nn%> <%AM/PM%>" End With End With .EndUpdate End With |
43 |
Can I add multiple timers with different colors
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .MarkTimes With .Add("timer1",#5/24/2012 9:35:00 AM#) .Movable = True .StatusEventBackColor = RGB(255,0,0) End With With .Add("timer2",#5/24/2012 1:35:00 PM#) .Movable = True .LineColor = RGB(0,255,0) .StatusEventBackColor = .LineColor .TimeScaleLineColor = .LineColor .TimeScaleLabel = "<fgcolor=00FF00><b><%hh%>:<%nn%> <%AM/PM%>" End With End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
42 |
How can I specify a different color for the status of the event that intersects with the timer
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .MarkTimes.Add("timer",#5/24/2012 11:35:00 AM#) .TimeScaleLabelAlign = 1 .Line = 257 ' LinesStyleEnum.exLinesThick Or LinesStyleEnum.exLinesHDot4 .TimeScaleLine = 1 .StatusEventBackColor = RGB(255,0,0) .Movable = True End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
41 |
How can the chart displays the events from the timer with a different color
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .MarkTimes.Add("timer",#5/24/2012 11:35:00 AM#) .TimeScaleLabel = "" .Label = "<fgcolor=FF0000>Time: <b><%hh%>:<%nn%> <%AM/PM%></b><br>Date: <b><%loc_sdate%>" .LabelAlign = 34 .Line = 780 ' LinesStyleEnum.exLinesThicker Or LinesStyleEnum.exLinesDash .BodyEventBackColor = RGB(128,0,0) .BodyEventForeColor = RGB(255,255,255) .Movable = True End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
40 |
Is it possible to display the timer's label on the chart, instead time scales
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .MarkTimes.Add("timer",#5/24/2012 11:35:00 AM#) .TimeScaleLabel = "" .Label = "<fgcolor=FF0000>Time: <b><%hh%>:<%nn%> <%AM/PM%></b><br>Date: <b><%loc_sdate%>" .LabelAlign = 34 .Line = 780 ' LinesStyleEnum.exLinesThicker Or LinesStyleEnum.exLinesDash End With With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
39 |
How can I add a timer to the scheduler
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .MarkTimes.Add "timer",#5/24/2012 11:35:00 AM# With .Events .Add #5/24/2012 9:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM# .Add #5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
38 |
Is it possible to define the small increment to 5 minutes
|
37 |
How can I change the time format to 24 hours to be displayed in the control's time scale
|
36 |
How can I change the time zone
With Schedule1 .DayEndTime = "13:00" With .TimeScales.Item(0) .TimeZone = "+03:00" .Caption = .TimeZone End With End With |
35 |
Is it possible to add more time scales
With Schedule1 .DayEndTime = "13:00" With .TimeScales.Add("+03:00") .AlignLeft = False .Caption = "EST <b>+03" End With End With |
34 |
How can I get any event to be notified if a picture or icon is clicked (Method 2)
' PictureClick event - Occurs when the user clicks a picture within an event ( Event.Pictures/ExtraPictures ). Private Sub Schedule1_PictureClick(ByVal Key As String) With Schedule1 Debug.Print( Key ) End With End Sub With Schedule1 .BeginUpdate .ShowSelectEvent = False .Calendar.Selection = #5/24/2012# .Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" With .Pictures .Add "pic1","c:\exontrol\images\card.png" .Add "pic2","c:\exontrol\images\diary.png" End With With .Events .Add(#5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM#).Pictures = "pic1/pic2" .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM#).Pictures = "1,2/3" .Add(#5/24/2012 1:00:00 PM#,#5/24/2012 3:45:00 PM#).ExtraPictures = "pic2/1" End With .EndUpdate End With |
33 |
How can I display a tooltip for an anchor element, for instance
' MouseMove event - Occurs when the user moves the mouse. Private Sub Schedule1_MouseMove(ByVal Button As Integer,ByVal Shift As Integer,ByVal X As Long,ByVal Y As Long) With Schedule1 s = .AnchorFromPoint(-1,-1) .ShowToolTip s,"info","","+16" End With End Sub With Schedule1 .BeginUpdate .ShowSelectEvent = False .Calendar.Selection = #5/24/2012# With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM#).ExtraLabel = "<a remove>remove</a>" .Add #5/24/2012 1:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
32 |
Is it possible to prevent selecting events
With Schedule1 .BeginUpdate .ShowSelectEvent = False .Calendar.Selection = #5/24/2012# With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM#).Selected = True .Add #5/24/2012 1:45:00 PM#,#5/24/2012 3:45:00 PM# End With .EndUpdate End With |
31 |
How can I get any event to be notified if a picture or icon is clicked (Method 1)
' AnchorClick event - Occurs when an anchor element is clicked. Private Sub Schedule1_AnchorClick(ByVal AnchorID As String,ByVal Options As String) With Schedule1 Debug.Print( AnchorID ) End With End Sub With Schedule1 .BeginUpdate .ShowSelectEvent = False .Calendar.Selection = #5/24/2012# .Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" With .Pictures .Add "pic1","c:\exontrol\images\card.png" .Add "pic2","c:\exontrol\images\diary.png" End With With .Events .Add(#5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM#).ExtraLabel = "<a pic1><img>pic1:32</img></a>" .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM#).ExtraLabel = "<a pic2><img>pic2:48</img></a>" .Add(#5/24/2012 1:45:00 PM#,#5/24/2012 3:45:00 PM#).LongLabel = "Start: <%=%1%><br>End: <%=%2%><br><br>Icon: <a 1><img>1</img></a> - <a 2><img>2</img></a>" End With .EndUpdate End With |
30 |
How can I display a picture or an icon to an event
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" With .Pictures .Add "pic1","c:\exontrol\images\card.png" .Add "pic2","c:\exontrol\images\diary.png" End With With .Events .Add(#5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM#).ExtraLabel = "<img>pic1:32</img>" .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:45:00 PM#).ExtraLabel = "<img>pic2:48</img>" .Add(#5/24/2012 11:30:00 AM#,#5/24/2012 2:30:00 PM#).Pictures = "1/2,3/pic1" With .Add(#5/24/2012 0:45:00 PM#,#5/24/2012 3:45:00 PM#) .ExtraPictures = "1/2" .Pictures = "1,pic1,2,pic2/3" End With End With .EndUpdate End With |
29 |
Is it possible to display the group's caption or ID on the event's label
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .Groups With .Add(1,"Group 1") .Visible = True .EventBackColor = RGB(128,128,128) .Title = "1'st Group" End With With .Add(2,"Group 2") .Visible = True .EventBackColor = RGB(255,0,0) .Title = "2'nd Group" End With End With .DefaultEventLongLabel = "<%=%256%><br>Group's Caption: <b><%=%262%></b><br>Group's Title: <b><%=%263%></b>" .DefaultEventShortLabel = .DefaultEventLongLabel With .Events .Add(#5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM#).GroupID = 1 .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM#).GroupID = 2 .Add(#5/24/2012 0:30:00 PM#,#5/24/2012 2:30:00 PM#).GroupID = 1 End With .EndUpdate End With |
28 |
How can I show the events from different groups using the same color
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .DisplayGroupingButton = True .ShowGroupingEvents = True .ApplyGroupingColors = False With .Groups With .Add(1,"Group 1") .Visible = True .EventBackColor = RGB(128,128,128) .Title = "1'st Group" End With With .Add(2,"Group 2") .Visible = True .EventBackColor = RGB(255,0,0) .Title = "2'nd Group" End With End With .DefaultEventLongLabel = "<%=%256%><br>Group's Caption: <b><%=%262%></b><br>Group's Title: <b><%=%263%></b>" .DefaultEventShortLabel = .DefaultEventLongLabel With .Events .Add(#5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM#).GroupID = 1 .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM#).GroupID = 2 .Add(#5/24/2012 0:30:00 PM#,#5/24/2012 2:30:00 PM#).GroupID = 1 End With .EndUpdate End With |
27 |
Is it possible to hide the grid lines in the calendar panel
|
26 |
How can I control the number of months displayed on the calendar pane
With Schedule1 With .Calendar .MaxMonthX = 2 .MaxMonthY = 2 End With End With |
25 |
I'm currently evaluating your eXSchedule product and i'm trying to have the header display the month according to local settings. How can I do that (Method 2)
With Schedule1 With .Calendar .FirstWeekDay = 1 .MonthNames = "J-A F-E M-A A-P M-A J-U J-L A-U S-P O-C N-V D-C" .WeekDays = "Du Lu Ma Mi Jo Vi Si" .TodayCaption = "A z i" End With End With |
24 |
I'm currently evaluating your eXSchedule product and i'm trying to have the header display the month according to local settings. How can I do that (Method 1)
With Schedule1 With .Calendar .FirstWeekDay = .LocFirstWeekDay ' .LocFirstWeekDay .MonthNames = .LocMonthNames .WeekDays = .LocWeekDays .AMPM = .LocAMPM End With End With |
23 |
How can I show the events grouped
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .DisplayGroupingButton = True .ShowGroupingEvents = True With .Groups With .Add(1,"Group 1") .Visible = True .EventBackColor = RGB(128,128,128) .HeaderBackColor = .EventBackColor End With With .Add(2,"Group 2") .Visible = True .EventBackColor = RGB(255,0,0) .HeaderBackColor = .EventBackColor End With End With With .Events .Add(#5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM#).GroupID = 1 .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM#).GroupID = 2 .Add(#5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM#).GroupID = 1 End With .EndUpdate End With |
22 |
How can I show 2 or more days in the scheduler
With Schedule1 .BeginUpdate With .Calendar .Selection = "0" .SelectDate(#5/24/2012#) = True .SelectDate(#5/25/2012#) = True End With .EndUpdate End With |
21 |
Is it possible to change the first week day
|
20 |
How can I define the new starting / ending points of the day
With Schedule1 .DayStartTime = "07:30" .DayEndTime = "12:45" End With |
19 |
Is it possible to change the label to be displayed when user moves the events
|
18 |
How can I change the default tooltip when adding new events
|
17 |
How can I change the default label when adding new events
|
16 |
How can I change the default label when adding new events
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .DefaultEventLongLabel = "Start: <%=%1%><br>End: <%=%2%>" .DefaultEventShortLabel = .DefaultEventLongLabel With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
15 |
How can I programatically add events to the control
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
14 |
How can I hide the status part of a specific event
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM#).ShowStatus = False .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
13 |
Is it possible to change the status color for a specific event
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM#).StatusColor = RGB(255,0,0) .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
12 |
Is it possible to change the background color for a specific event
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add(#5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM#).BodyBackColor = RGB(255,0,0) .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
11 |
Can I change the size of the status to be larger
|
10 |
I do not need a status, can I hide it
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .ShowStatusEvent = False With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
9 |
Is it possible to change the status's default background color
With Schedule1 .BeginUpdate .Calendar.Selection = #5/24/2012# .StatusEventColor = RGB(255,0,0) With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
8 |
How can I change the visual appearance of the Events (Method 2)
|
7 |
How can I change the visual appearance of the Events (Method 1)
With Schedule1 .BeginUpdate .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Calendar.Selection = #5/24/2012# .BodyEventBackColor = &H1000000 With .Events .Add #5/24/2012 10:00:00 AM#,#5/24/2012 0:00:00 PM# .Add #5/24/2012 10:45:00 AM#,#5/24/2012 0:30:00 PM# .Add #5/24/2012 11:30:00 AM#,#5/24/2012 1:30:00 PM# End With .EndUpdate End With |
6 |
How can I show the scheduler panel only, so no Calendar panel is shown
|
5 |
May I display the calendar in the right side of the control
|
4 |
Is it possible to disable resizing the vertical splitter
|
3 |
How can I show the Calendar panel only
|
2 |
Is there an AutoHide option for the Calendar panel
|
1 |
How can I hide the Calendar panel
|